use GTK_TYPE_GDK_EVENT in (un)?select_row signal.
authorCEST 1998 Paolo Molaro <lupus@debian.org>
Fri, 22 May 1998 06:55:20 +0000 (06:55 +0000)
committerPaolo Molaro <lupus@src.gnome.org>
Fri, 22 May 1998 06:55:20 +0000 (06:55 +0000)
Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>

* gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
signal.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkclist.c

index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index 3f3c58fac00d424fe69536a252ab353a0ee7a907..9b9285fdea63ab774edfbd944c411bd0b1d00251 100644 (file)
@@ -1,3 +1,9 @@
+
+Fri May 22 08:51:10 CEST 1998  Paolo Molaro <lupus@debian.org>
+
+       * gtk/gtkclist.c: use GTK_TYPE_GDK_EVENT in (un)?select_row
+       signal.
+
 1998-05-21    <sopwith@redhat.com>
 
        * gtk/gtkrc.[ch]: gtk_rc_set_image_loader() - allow apps to set a custom
index c25aa5a4dd2b5f6c433aa58393c4d5443431a4a9..be1a65aafaefb253a3a32a44e4aef10ec953a58b 100644 (file)
@@ -323,14 +323,14 @@ gtk_clist_class_init (GtkCListClass * klass)
                    object_class->type,
                    GTK_SIGNAL_OFFSET (GtkCListClass, select_row),
                    gtk_clist_marshal_signal_1,
-           GTK_TYPE_NONE, 3, GTK_TYPE_INT, GTK_TYPE_INT, GTK_TYPE_POINTER);
+           GTK_TYPE_NONE, 3, GTK_TYPE_INT, GTK_TYPE_INT, GTK_TYPE_GDK_EVENT);
   clist_signals[UNSELECT_ROW] =
     gtk_signal_new ("unselect_row",
                    GTK_RUN_FIRST,
                    object_class->type,
                    GTK_SIGNAL_OFFSET (GtkCListClass, unselect_row),
                    gtk_clist_marshal_signal_1,
-           GTK_TYPE_NONE, 3, GTK_TYPE_INT, GTK_TYPE_INT, GTK_TYPE_POINTER);
+           GTK_TYPE_NONE, 3, GTK_TYPE_INT, GTK_TYPE_INT, GTK_TYPE_GDK_EVENT);
   clist_signals[CLICK_COLUMN] =
     gtk_signal_new ("click_column",
                    GTK_RUN_FIRST,